Cam Monitor Plan Unit Control Structure

UnitControl schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 14 Required: 13
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

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

Properties

id unitId controlCode parameterCode installDate optimizationDate originalCode retireDate seasonalControlsIndicator userId addDate updateDate fuelIndicatorCode 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-control-structure.json",
  "name": "UnitControl",
  "description": "UnitControl schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "12345"
    },
    "unitId": {
      "type": "double",
      "example": 0.0
    },
    "controlCode": {
      "type": "string",
      "example": "string"
    },
    "parameterCode": {
      "type": "string",
      "example": "string"
    },
    "installDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "optimizationDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "originalCode": {
      "type": "string",
      "example": "string"
    },
    "retireDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "seasonalControlsIndicator": {
      "type": "string",
      "example": "string"
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "updateDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "fuelIndicatorCode": {
      "type": "string",
      "example": "string"
    },
    "unit": {
      "$ref": "#/components/schemas/Unit"
    }
  },
  "required": [
    "id",
    "unitId",
    "controlCode",
    "parameterCode",
    "installDate",
    "optimizationDate",
    "originalCode",
    "retireDate",
    "seasonalControlsIndicator",
    "userId",
    "addDate",
    "updateDate",
    "unit"
  ]
}