{ "$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-list-schema.json", "title": "PreservationProjectList", "type": "object", "properties": { "total": { "type": "integer" }, "offset": { "type": "integer" }, "limit": { "type": "integer" }, "projects": { "type": "array", "items": { "type": "object", "properties": { "id": {}, "name": {}, "buildingId": {}, "buildingName": {}, "status": {}, "startDate": {}, "estimatedCompletion": {}, "actualCompletion": {}, "budget": {}, "description": {}, "contractor": {}, "historicalContext": {} } } } } }