Plant

Plant schema from Monitor Plan Management OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
id number
orisCode number
name string
state string
countyCode string
region number
facilityRegistrySystemId string
units array
stackPipes array
plans array
View JSON Schema on GitHub

JSON Schema

cam-monitor-plan-plant-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-monitor-plan-plant-schema.json",
  "title": "Plant",
  "description": "Plant schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "example": 0.0
    },
    "orisCode": {
      "type": "number",
      "example": 0.0
    },
    "name": {
      "type": "string",
      "example": "EPA Facility"
    },
    "state": {
      "type": "string",
      "example": "NC"
    },
    "countyCode": {
      "type": "string",
      "example": "037"
    },
    "region": {
      "type": "number",
      "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"
  ]
}