ReportDetailDTO

ReportDetailDTO schema from CAMD Administrative & General Services OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
displayName string
templateCode string
templateType string
results array
View JSON Schema on GitHub

JSON Schema

cam-camd-services-report-detail-dto-schema.json Raw ↑
{
  "$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"
  ]
}