Cam Monitor Plan Unit Op Status Structure

UnitOpStatus schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 6 Required: 6
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

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

Properties

id unitId opStatusCode beginDate endDate unit

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-unit-op-status-structure.json",
  "name": "UnitOpStatus",
  "description": "UnitOpStatus schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "double",
      "example": 0.0
    },
    "unitId": {
      "type": "double",
      "example": 0.0
    },
    "opStatusCode": {
      "type": "string",
      "example": "active"
    },
    "beginDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "endDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "unit": {
      "$ref": "#/components/schemas/Unit"
    }
  },
  "required": [
    "id",
    "unitId",
    "opStatusCode",
    "beginDate",
    "endDate",
    "unit"
  ]
}