UnitBoilerType

UnitBoilerType schema from Monitor Plan Management OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
id number
unitRecordId number
unitTypeCode string
beginDate string
endDate string
userId string
updateDate string
unit object
View JSON Schema on GitHub

JSON Schema

cam-monitor-plan-unit-boiler-type-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-unit-boiler-type-schema.json",
  "title": "UnitBoilerType",
  "description": "UnitBoilerType schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "example": 0.0
    },
    "unitRecordId": {
      "type": "number",
      "example": 0.0
    },
    "unitTypeCode": {
      "type": "string",
      "example": "string"
    },
    "beginDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    },
    "endDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "updateDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    },
    "unit": {
      "$ref": "#/components/schemas/Unit"
    }
  },
  "required": [
    "id",
    "unitRecordId",
    "unitTypeCode",
    "beginDate",
    "endDate",
    "userId",
    "updateDate",
    "unit"
  ]
}