Cam Monitor Plan Program Structure

Program schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 15 Required: 10
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

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

Properties

programId addDate federalIndicator firstSipYear indianCountryIndicator overdraftIndicator programCode stateCode stateRegulation tradingIndicator tribalLandCode updateDate userId unitPrograms code

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-program-structure.json",
  "name": "Program",
  "description": "Program schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "programId": {
      "type": "double",
      "example": 0.0
    },
    "addDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "federalIndicator": {
      "type": "double",
      "example": 0.0
    },
    "firstSipYear": {
      "type": "double",
      "example": 2024
    },
    "indianCountryIndicator": {
      "type": "double",
      "example": 100
    },
    "overdraftIndicator": {
      "type": "double",
      "example": 0.0
    },
    "programCode": {
      "type": "string",
      "example": "string"
    },
    "stateCode": {
      "type": "string",
      "example": "NC"
    },
    "stateRegulation": {
      "type": "string",
      "example": "NC"
    },
    "tradingIndicator": {
      "type": "double",
      "example": 0.0
    },
    "tribalLandCode": {
      "type": "string",
      "example": "string"
    },
    "updateDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "unitPrograms": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UnitProgram"
      },
      "example": [
        "string"
      ]
    },
    "code": {
      "$ref": "#/components/schemas/ProgramCode"
    }
  },
  "required": [
    "programId",
    "addDate",
    "federalIndicator",
    "indianCountryIndicator",
    "overdraftIndicator",
    "programCode",
    "tradingIndicator",
    "userId",
    "unitPrograms",
    "code"
  ]
}