{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.artic.edu/schemas/place.schema.json", "title": "Place", "type": "object", "description": "A geographic place (Getty TGN aligned).", "properties": { "id": { "type": "integer" }, "api_model": { "type": "string" }, "api_link": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "tgn_id": { "type": [ "string", "null" ], "description": "Getty Thesaurus of Geographic Names identifier." }, "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" ] }