{
    "format": "tsv",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "Apple Music Total Library Adds Schema",
    "required": [
        "Datestamp",
        "Apple Identifier"
    ],
    "properties": {
        "Datestamp": {
            "$id": "#/properties/Datestamp",
            "type": "string",
            "default": "",
            "examples": [
                "2019-06-20"
            ],
            "format": "date-time",
            "pattern": "^\\d{4}\\-\\d{2}\\-\\d{2}$"
        },
        "Apple Identifier": {
            "$id": "#/properties/Apple Identifier",
            "type": "integer",
            "default": "",
            "examples": [
                "123"
            ],
            "pattern": "^(\\d+)$"
        },
        "Title": {
            "$id": "#/properties/Title",
            "type": "string",
            "pattern": "^(.+)$",
            "default": "",
            "examples": [
                "Visions of Johanna"
            ]
        },
        "Artist": {
            "$id": "#/properties/Artist",
            "type": "string",
            "pattern": "^(.+)$",
            "default": "",
            "examples": [
                "Bob Dylan"
            ]
        },
        "Artist ID": {
            "$id": "#/properties/Artist ID",
            "type": "string",
            "default": "",
            "examples": [
                "123,567"
            ],
            "pattern": "^(.+)$"
        },
        "Media Type": {
            "$id": "#/properties/Media Type",
            "type": "integer",
            "default": "",
            "examples": [
                "123"
            ],
            "pattern": "^(\\d+)$"
        },
        "Action Type": {
            "$id": "#/properties/Action Type",
            "type": "integer",
            "default": "",
            "examples": [
                "123"
            ],
            "pattern": "^(\\d+)$"
        },
        "Total Adds": {
            "$id": "#/properties/Total Adds",
            "type": "integer",
            "default": "",
            "examples": [
                "123"
            ],
            "pattern": "^(\\d+)$"
        }
    }
}
