Cam Monitor Plan Monitor Attribute Structure

MonitorAttribute schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 16 Required: 16
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

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

Properties

id locationId ductIndicator bypassIndicator groundElevation stackHeight materialCode shapeCode crossAreaFlow crossAreaStackExit beginDate endDate userId addDate updateDate location

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-monitor-attribute-structure.json",
  "name": "MonitorAttribute",
  "description": "MonitorAttribute schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "12345"
    },
    "locationId": {
      "type": "string",
      "example": "12345"
    },
    "ductIndicator": {
      "type": "double",
      "example": 0.0
    },
    "bypassIndicator": {
      "type": "double",
      "example": 0.0
    },
    "groundElevation": {
      "type": "double",
      "example": 0.0
    },
    "stackHeight": {
      "type": "double",
      "example": 0.0
    },
    "materialCode": {
      "type": "string",
      "example": "string"
    },
    "shapeCode": {
      "type": "string",
      "example": "string"
    },
    "crossAreaFlow": {
      "type": "double",
      "example": 0.0
    },
    "crossAreaStackExit": {
      "type": "double",
      "example": 0.0
    },
    "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"
    },
    "location": {
      "$ref": "#/components/schemas/MonitorLocation"
    }
  },
  "required": [
    "id",
    "locationId",
    "ductIndicator",
    "bypassIndicator",
    "groundElevation",
    "stackHeight",
    "materialCode",
    "shapeCode",
    "crossAreaFlow",
    "crossAreaStackExit",
    "beginDate",
    "endDate",
    "userId",
    "addDate",
    "updateDate",
    "location"
  ]
}