Cam Monitor Plan Plant Structure

Plant schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 10 Required: 10
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Plant is a JSON Structure definition published by EPA — U.S. Environmental Protection Agency, describing 10 properties, of which 10 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id orisCode name state countyCode region facilityRegistrySystemId units stackPipes plans

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-structure/cam-monitor-plan-plant-structure.json",
  "name": "Plant",
  "description": "Plant schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "double",
      "example": 0.0
    },
    "orisCode": {
      "type": "double",
      "example": 0.0
    },
    "name": {
      "type": "string",
      "example": "EPA Facility"
    },
    "state": {
      "type": "string",
      "example": "NC"
    },
    "countyCode": {
      "type": "string",
      "example": "037"
    },
    "region": {
      "type": "double",
      "example": 0.0
    },
    "facilityRegistrySystemId": {
      "type": "string",
      "example": "12345"
    },
    "units": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Unit"
      },
      "example": [
        "string"
      ]
    },
    "stackPipes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StackPipe"
      },
      "example": [
        "string"
      ]
    },
    "plans": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MonitorPlan"
      },
      "example": [
        "string"
      ]
    }
  },
  "required": [
    "id",
    "orisCode",
    "name",
    "state",
    "countyCode",
    "region",
    "facilityRegistrySystemId",
    "units",
    "stackPipes",
    "plans"
  ]
}