{
    "format": "bigtable",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "AppleMusic Charts Schema",
    "required": [
        "date",
        "country_code",
        "chart_position",
        "isrc"
    ],
    "properties": {
        "date": {
            "$id": "#/properties/date",
            "type": "string",
            "title": "Date",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "country_code": {
            "$id": "#/properties/country_code",
            "type": "string",
            "title": "Country Code",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^([a-zA-Z]{2}|worldwide)$"
        },
        "chart_id": {
            "$id": "#/properties/chart_id",
            "type": "integer",
            "title": "Chart ID",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^(\\d+)$"
        },
        "isrc": {
            "$id": "#/properties/isrc",
            "type": "string",
            "title": "ISRC",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^[A-Z]{2}-?\\w{3}-?\\d{2}-?\\d{5}$"
        }
    }
}
