{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/cam-camd-services-report-dto-schema.json", "title": "ReportDTO", "description": "ReportDTO schema from CAMD Administrative & General Services OpenAPI Specification", "type": "object", "properties": { "displayName": { "type": "string", "example": "EPA Facility" }, "columns": { "type": "array", "items": { "$ref": "#/components/schemas/ReportColumnDTO" }, "example": [ "string" ] }, "details": { "type": "array", "items": { "$ref": "#/components/schemas/ReportDetailDTO" }, "example": [ "string" ] } }, "required": [ "displayName", "columns", "details" ] }