{ "$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-detail-dto-schema.json", "title": "ReportDetailDTO", "description": "ReportDetailDTO schema from CAMD Administrative & General Services OpenAPI Specification", "type": "object", "properties": { "displayName": { "type": "string", "example": "EPA Facility" }, "templateCode": { "type": "string", "example": "string" }, "templateType": { "type": "string", "example": "string" }, "results": { "type": "array", "items": { "type": "object" }, "example": [ {} ] } }, "required": [ "displayName", "templateCode", "templateType", "results" ] }