{
    "format": "csv",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "ama_artist Schema",
    "required": [
        "participant_number",
        "participant_name",
        "isni",
        "last_name",
        "first_name",
        "date_of_birth",
        "date_of_death",
        "spotify_uri",
        "apple_artist_id",
        "mod_stamp",
        "mod_flag"
    ],
    "properties": {
        "participant_number": {
            "$id": "#/properties/participant_number",
            "type": "string",
            "title": "participant_number",
            "default": "",
            "examples": [
                "1234"
            ],
            "pattern": "^[0-9]*$"
        },
        "participant_name": {
            "$id": "#/properties/participant_name",
            "type": "string",
            "title": "participant_name",
            "default": "",
            "examples": [
                "Desmond Dekker"
            ],
            "pattern": "^(.*)$"
        },
        "isni": {
            "$id": "#/properties/isni",
            "type": "string",
            "title": "isni",
            "default": "",
            "pattern": "^(.*)$"
        },
        "last_name": {
            "$id": "#/properties/last_name",
            "type": "string",
            "title": "last_name",
            "default": "",
            "examples": [
                "Dekker"
            ],
            "pattern": "^(.*)$"
        },
        "first_name": {
            "$id": "#/properties/first_name",
            "type": "string",
            "title": "first_name",
            "default": "",
            "examples": [
                "Desmond"
            ],
            "pattern": "^(.*)$"
        },
        "date_of_birth": {
            "$id": "#/properties/date_of_birth",
            "type": "string",
            "title": "date_of_birth",
            "default": "",
            "examples": [
                "20190101"
            ],
            "pattern": "^[0-9]{8}$"
        },
        "date_of_death": {
            "$id": "#/properties/date_of_death",
            "type": "string",
            "title": "date_of_death",
            "default": "",
            "examples": [
                "20190101"
            ],
            "pattern": "^[0-9]{8}$"
        },
        "particip_spotify_uri": {
            "$id": "#/properties/particip_spotify_uri",
            "type": "string",
            "title": "particip_spotify_uri",
            "default": "",
            "examples": [
                "spotify:artist:1FcB6xMihhP9Hb6AdGVbWe"
            ],
            "pattern": "^(.*)$"
        },
        "apple_artist_id": {
            "$id": "#/properties/apple_artist_id",
            "type": "string",
            "title": "apple_artist_id",
            "default": "",
            "examples": [
                "123"
            ],
            "pattern": "^[0-9]*$"
        },
        "mod_stamp": {
            "$id": "#/properties/mod_stamp",
            "type": "string",
            "title": "mod_stamp",
            "examples": [
                "1995-12-12 10:08:34.227",
                "1995-12-12 10:08:34.227"
            ],
            "pattern": "\\d{4}-\\d{2}-\\d{2}\\s\\d{2}:\\d{2}:\\d{2}\\.\\d+"
        },
        "mod_flag": {
            "$id": "#/properties/mod_flag",
            "type": "string",
            "title": "mod_flag",
            "examples": [
                "l"
            ],
            "pattern": "^[A-Za-z]{1}$"
        }
    }
}
