Cam Monitor Plan Unit Stack Configuration Structure

UnitStackConfiguration schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 10 Required: 10
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

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

Properties

id unitId stackPipeId beginDate endDate userId addDate updateDate stackPipe 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-stack-configuration-structure.json",
  "name": "UnitStackConfiguration",
  "description": "UnitStackConfiguration schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "12345"
    },
    "unitId": {
      "type": "double",
      "example": 0.0
    },
    "stackPipeId": {
      "type": "string",
      "example": "12345"
    },
    "beginDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "endDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "updateDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "stackPipe": {
      "$ref": "#/components/schemas/StackPipe"
    },
    "unit": {
      "$ref": "#/components/schemas/Unit"
    }
  },
  "required": [
    "id",
    "unitId",
    "stackPipeId",
    "beginDate",
    "endDate",
    "userId",
    "addDate",
    "updateDate",
    "stackPipe",
    "unit"
  ]
}