Cam Monitor Plan Lmequalification Structure

LMEQualification schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 10 Required: 10
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

LMEQualification 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 qualificationId qualificationDataYear so2Tons noxTons operatingHours userId addDate updateDate qualification

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-lmequalification-structure.json",
  "name": "LMEQualification",
  "description": "LMEQualification schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "12345"
    },
    "qualificationId": {
      "type": "string",
      "example": "12345"
    },
    "qualificationDataYear": {
      "type": "double",
      "example": 2024
    },
    "so2Tons": {
      "type": "double",
      "example": 0.0
    },
    "noxTons": {
      "type": "double",
      "example": 0.0
    },
    "operatingHours": {
      "type": "double",
      "example": 0.0
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "updateDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "qualification": {
      "$ref": "#/components/schemas/MonitorQualification"
    }
  },
  "required": [
    "id",
    "qualificationId",
    "qualificationDataYear",
    "so2Tons",
    "noxTons",
    "operatingHours",
    "userId",
    "addDate",
    "updateDate",
    "qualification"
  ]
}