{ "$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" ] }