UnitOpStatus

UnitOpStatus schema from Monitor Plan Management OpenAPI Specification

GovernmentEnvironmentalOpen DataAir QualityWater QualityHazardous WasteComplianceEmissions

Properties

Name Type Description
id number
unitId number
opStatusCode string
beginDate string
endDate string
unit object
View JSON Schema on GitHub

JSON Schema

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