StackPipe

StackPipe schema from Monitor Plan Management OpenAPI Specification

GovernmentEnvironmentalOpen DataAir QualityWater QualityHazardous WasteComplianceEmissions

Properties

Name Type Description
id string
name string
activeDate string
retireDate string
facId number
plant object
location object
unitStackConfigurations array
View JSON Schema on GitHub

JSON Schema

cam-monitor-plan-stack-pipe-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-stack-pipe-schema.json",
  "title": "StackPipe",
  "description": "StackPipe schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "12345"
    },
    "name": {
      "type": "string",
      "example": "EPA Facility"
    },
    "activeDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    },
    "retireDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    },
    "facId": {
      "type": "number",
      "example": 0.0
    },
    "plant": {
      "$ref": "#/components/schemas/Plant"
    },
    "location": {
      "$ref": "#/components/schemas/MonitorLocation"
    },
    "unitStackConfigurations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UnitStackConfiguration"
      },
      "example": [
        "string"
      ]
    }
  },
  "required": [
    "id",
    "name",
    "activeDate",
    "retireDate",
    "facId",
    "plant",
    "location",
    "unitStackConfigurations"
  ]
}