{
    "format": "ndjson",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "Spotify Tracks Schema",
    "required": [
        "track_id"
    ],
    "properties": {
        "message": {
            "$id": "#/properties/message",
            "type": "string",
            "title": "Message header identifying API",
            "default": "",
            "examples": [
                "APIUserData"
            ],
            "pattern": "^(.*)$"
        },
        "version": {
            "$id": "#/properties/version",
            "type": "integer",
            "title": "The API version number",
            "default": "",
            "examples": [
                "2"
            ],
			"pattern": "^([\\d]*)$"
        },
        "track_id": {
            "$id": "#/properties/track_id",
            "type": "string",
            "title": "The Track_id Schema",
            "default": "",
            "examples": [
                "bb927b9866034a04ad21848f0f9973b3"
            ],
            "pattern": "^[a-f\\d]{32}$|^[a-f\\d]{64}$"
        },
        "uri": {
            "$id": "#/properties/uri",
            "type": "string",
            "title": "The Uri Schema",
            "default": "",
            "examples": [
                "spotify:track:2QVS1am1C3G2i2HvtZPqHc"
            ],
            "format": "uri",
            "pattern": "^(.*)$"
        },
        "isrc": {
            "$id": "#/properties/isrc",
            "type": "string",
            "title": "The Isrc Schema",
            "default": "",
            "examples": [
                "JPN301200701"
            ],
            "pattern": "^(.*)$"
        },
        "album_code": {
            "$id": "#/properties/album_code",
            "type": "string",
            "title": "The Album_code Schema",
            "default": "",
            "examples": [
                "4582290402130"
            ],
            "pattern": "^(.*)$"
        },
        "album_artist": {
            "$id": "#/properties/album_artist",
            "type": "string",
            "title": "The Album_artist Schema",
            "default": "",
            "examples": [
                "Chatmonchy"
            ],
            "pattern": "^(.*)$"
        },
        "track_artists": {
            "$id": "#/properties/track_artists",
            "type": "string",
            "title": "The Track_artists Schema",
            "default": "",
            "examples": [
                "Chatmonchy"
            ],
            "pattern": "^(.*)$"
        },
        "track_name": {
            "$id": "#/properties/track_name",
            "type": "string",
            "title": "The Track_name Schema",
            "default": "",
            "examples": [
                "憧れのスレンダー・ガール"
            ],
            "pattern": "^(.*)$"
        },
        "album_name": {
            "$id": "#/properties/album_name",
            "type": "string",
            "title": "The Album_name Schema",
            "default": "",
            "examples": [
                "カサリズム4"
            ],
            "pattern": "^(.*)$"
        }
    }
}
