CodeTableDto

CodeTableDto schema from Master Data Management OpenAPI Specification

GovernmentEnvironmentalOpen DataAir QualityWater QualityHazardous WasteComplianceEmissions

Properties

Name Type Description
code string Code
name string Display Name
View JSON Schema on GitHub

JSON Schema

cam-master-data-code-table-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-code-table-dto-schema.json",
  "title": "CodeTableDto",
  "description": "CodeTableDto schema from Master Data Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Code",
      "example": "string"
    },
    "name": {
      "type": "string",
      "description": "Display Name",
      "example": "EPA Facility"
    }
  },
  "required": [
    "code",
    "name"
  ]
}