{ "$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-list-schema.json", "title": "ArtworkList", "type": "object", "properties": { "total": { "type": "integer" }, "offset": { "type": "integer" }, "limit": { "type": "integer" }, "artworks": { "type": "array", "items": { "type": "object", "properties": { "id": {}, "title": {}, "artist": {}, "yearCreated": {}, "medium": {}, "dimensions": {}, "location": {}, "buildingId": {}, "description": {}, "imageUrl": {}, "acquisitionDate": {}, "historicalSignificance": {} } } } } }