{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/architect-of-the-capitol/refs/heads/main/json-schema/aoc-data-api-artwork-schema.json", "title": "Artwork", "type": "object", "properties": { "id": { "type": "string" }, "title": { "type": "string" }, "artist": { "type": "string" }, "yearCreated": { "type": "string" }, "medium": { "type": "string" }, "dimensions": { "type": "string" }, "location": { "type": "string" }, "buildingId": { "type": "string" }, "description": { "type": "string" }, "imageUrl": { "type": "string" }, "acquisitionDate": { "type": "string" }, "historicalSignificance": { "type": "string" } } }