{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FeedServiceStatusContract", "title": "FeedServiceStatusContract", "required": [ "service", "status" ], "type": "object", "properties": { "service": { "$ref": "#/components/schemas/FeedServiceEnum" }, "status": { "$ref": "#/components/schemas/FeedServiceStatus" }, "minAvailableLocalDate": { "type": "string", "description": "Date of the oldest flight stored (based on scheduled local times)", "format": "date-time", "nullable": true, "deprecated": true }, "maxAvailableLocalDate": { "type": "string", "description": "Date of the most recent flight stored (based on scheduled local times)", "format": "date-time", "nullable": true, "deprecated": true } }, "additionalProperties": false, "description": "Feed service status contract.\r\nRead https://aerodatabox.com/data-coverage for context." }