{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://aliceplex-corejs.joshuaavalon.app/actor.schema.json",
    "title": "Actor",
    "description": "An Actor in Plex.",
    "type": "object",
    "properties": {
        "name": {
            "type": "string"
        },
        "role": {
            "type": "string"
        },
        "photo": {
            "type": ["string", "null"],
            "format": "uri"
        }
    },
    "additionalProperties": false,
    "required": ["name", "role"]
}
