{
    "type": "object",
    "properties": {
        "external_urls": {
            "type": "object",
            "properties": {
                "spotify": {
                    "type": "string"
                }
            },
            "required": [
                "spotify"
            ]
        },
        "followers": {
            "type": "object",
            "properties": {
                "href": {
                    "type": "null"
                },
                "total": {
                    "type": "integer"
                }
            },
            "required": [
                "href",
                "total"
            ]
        },
        "genres": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "href": {
            "type": "string"
        },
        "id": {
            "type": "string"
        },
        "images": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "url": {
                        "type": "string"
                    },
                    "height": {
                        "type": "integer"
                    },
                    "width": {
                        "type": "integer"
                    }
                },
                "required": [
                    "url",
                    "height",
                    "width"
                ]
            }
        },
        "name": {
            "type": "string"
        },
        "popularity": {
            "type": "integer"
        },
        "type": {
            "type": "string"
        },
        "uri": {
            "type": "string"
        }
    },
    "required": [
        "external_urls",
        "followers",
        "genres",
        "href",
        "id",
        "images",
        "name",
        "popularity",
        "type",
        "uri"
    ],
    "version": 1
}
