{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.artic.edu/schemas/tour.schema.json", "title": "Tour", "type": "object", "description": "Curated multi-stop tour.", "properties": { "id": { "type": "integer" }, "api_model": { "type": "string" }, "api_link": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "image": { "type": [ "string", "null" ] }, "description": { "type": [ "string", "null" ] }, "intro": { "type": [ "string", "null" ] }, "intro_link": { "type": [ "string", "null" ], "format": "uri" }, "intro_transcript": { "type": [ "string", "null" ] }, "weight": { "type": [ "integer", "null" ] }, "artwork_titles": { "type": "array", "items": { "type": "string" } }, "artist_titles": { "type": "array", "items": { "type": "string" } }, "suggest_autocomplete_all": { "type": [ "array", "object", "null" ] }, "suggest_autocomplete_boosted": { "type": [ "string", "null" ] }, "source_updated_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" }, "timestamp": { "type": "string", "format": "date-time" } }, "required": [ "id", "title", "api_model", "api_link" ] }