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