{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://aliceplex-corejs.joshuaavalon.app/album.schema.json",
    "title": "Album",
    "description": "A music album in Plex.",
    "type": "object",
    "properties": {
        "sort_title": {
            "type": ["string", "null"]
        },
        "aired": {
            "type": "string",
            "format": "date"
        },
        "summary": {
            "type": ["string", "null"]
        },
        "genres": {
            "$ref": "./defs.schema.json#/definitions/uniqueStringArray"
        },
        "collections": {
            "$ref": "./defs.schema.json#/definitions/uniqueStringArray"
        }
    },
    "additionalProperties": false,
    "required": ["aired", "summary", "genres", "collections"]
}
