DataSetDTO

DataSetDTO schema from Master Data Management OpenAPI Specification

GovernmentEnvironmentalOpen DataAir QualityWater QualityHazardous WasteComplianceEmissions

Properties

Name Type Description
dataSetCode string
groupCode string
displayName string
noResultsMessage string
tables array
View JSON Schema on GitHub

JSON Schema

cam-master-data-data-set-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-master-data-data-set-dto-schema.json",
  "title": "DataSetDTO",
  "description": "DataSetDTO schema from Master Data Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "dataSetCode": {
      "type": "string",
      "example": "string"
    },
    "groupCode": {
      "type": "string",
      "example": "string"
    },
    "displayName": {
      "type": "string",
      "example": "EPA Facility"
    },
    "noResultsMessage": {
      "type": "string",
      "example": "string"
    },
    "tables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataTableDTO"
      },
      "example": [
        "string"
      ]
    }
  },
  "required": [
    "dataSetCode",
    "groupCode",
    "displayName",
    "noResultsMessage",
    "tables"
  ]
}