Architect of the Capitol · Schema
PreservationProject
Federal GovernmentCapitol HillCongressHistoric PreservationGovernment Services
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| buildingId | string | |
| buildingName | string | |
| status | string | |
| startDate | string | |
| estimatedCompletion | string | |
| actualCompletion | string | |
| budget | number | |
| description | string | |
| contractor | string | |
| historicalContext | 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-preservation-project-schema.json",
"title": "PreservationProject",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"buildingId": {
"type": "string"
},
"buildingName": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"planned",
"active",
"completed"
]
},
"startDate": {
"type": "string"
},
"estimatedCompletion": {
"type": "string"
},
"actualCompletion": {
"type": "string"
},
"budget": {
"type": "number"
},
"description": {
"type": "string"
},
"contractor": {
"type": "string"
},
"historicalContext": {
"type": "string"
}
}
}