{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/echo-dfr-dfr018-program-dates-schema.json", "title": "dfr018_ProgramDates", "description": "Program Dates Object", "type": "object", "properties": { "EndDate": { "description": "End date for the date range of interest. Formatted as mm/dd/yyyy", "example": "01/01/2016", "title": "End Date", "type": "string" }, "Program": { "description": "The source database for the EPA programs information.", "example": "CWA", "title": "Program", "type": "string" }, "StartDate": { "description": "Starting date for the date range of interest. Formatted as mm/dd/yyyy", "example": "01/01/2016", "title": "Start Date", "type": "string" } }, "required": [ "Program", "StartDate", "EndDate" ] }