{
    "format": "sql",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "Spotify Playlists Schema",
    "required": [
        "playlist_id",
        "playlist_name"
    ],
    "properties": {
        "playlist_id": {
            "$id": "#/properties/playlist_id",
            "type": "string",
            "title": "Playlist ID",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^(.+)$"
        },
        "playlist_name": {
            "$id": "#/properties/playlist_name",
            "type": "string",
            "title": "Playlist Name",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^(.*)$"
        }
    }
}
