Architect of the Capitol · Schema
Artwork
Federal GovernmentCapitol HillCongressHistoric PreservationGovernment Services
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| title | string | |
| artist | string | |
| yearCreated | string | |
| medium | string | |
| dimensions | string | |
| location | string | |
| buildingId | string | |
| description | string | |
| imageUrl | string | |
| acquisitionDate | string | |
| historicalSignificance | string |
JSON Schema
{
"$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"
}
}
}