UnitProgramDTO
UnitProgramDTO schema from Monitor Plan Management OpenAPI Specification
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions
Properties
| Name | Type | Description |
|---|---|---|
| programId | number | The identifier for the program associated with the unit. |
| programCode | string | The code representing the specific program. |
| classCode | string | The code representing the class associated with the program. |
| unitMonitorCertBeginDate | string | The date when unit monitoring certification began for the program. |
| unitMonitorCertDeadline | string | The deadline date for completing unit monitoring certification. |
| emissionsRecordingBeginDate | string | The date when emissions recording began under the program. |
| endDate | string | The end date for the program's association with the unit. |
| id | string | The unique identifier for the unit program record. |
| unitId | number | The identifier for the unit associated with the program. |
| userId | string | The identifier for the user who last modified the record. |
| addDate | string | The timestamp when the unit program record was created. |
| updateDate | string | The timestamp when the unit program record was last updated. |
| active | boolean | Indicates whether the unit program is currently active. |
JSON Schema
{
"$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-program-dto-schema.json",
"title": "UnitProgramDTO",
"description": "UnitProgramDTO schema from Monitor Plan Management OpenAPI Specification",
"type": "object",
"properties": {
"programId": {
"type": "number",
"description": "The identifier for the program associated with the unit.",
"example": 67890
},
"programCode": {
"type": "string",
"description": "The code representing the specific program.",
"example": "ARP"
},
"classCode": {
"type": "string",
"description": "The code representing the class associated with the program.",
"example": "A"
},
"unitMonitorCertBeginDate": {
"format": "date-time",
"type": "string",
"description": "The date when unit monitoring certification began for the program.",
"example": "2024-01-01"
},
"unitMonitorCertDeadline": {
"format": "date-time",
"type": "string",
"description": "The deadline date for completing unit monitoring certification.",
"example": "2024-12-31"
},
"emissionsRecordingBeginDate": {
"format": "date-time",
"type": "string",
"description": "The date when emissions recording began under the program.",
"example": "2024-01-01"
},
"endDate": {
"format": "date-time",
"type": "string",
"description": "The end date for the program's association with the unit.",
"example": "2025-12-31"
},
"id": {
"type": "string",
"description": "The unique identifier for the unit program record.",
"example": "1234567890"
},
"unitId": {
"type": "number",
"description": "The identifier for the unit associated with the program.",
"example": 12345
},
"userId": {
"type": "string",
"description": "The identifier for the user who last modified the record.",
"example": "jdoe"
},
"addDate": {
"type": "string",
"description": "The timestamp when the unit program record was created.",
"example": "2024-08-01T00:00:00.000Z"
},
"updateDate": {
"type": "string",
"description": "The timestamp when the unit program record was last updated.",
"example": "2024-08-15T00:00:00.000Z"
},
"active": {
"type": "boolean",
"description": "Indicates whether the unit program is currently active.",
"example": true
}
},
"required": [
"programId",
"programCode",
"classCode",
"unitMonitorCertBeginDate",
"unitMonitorCertDeadline",
"emissionsRecordingBeginDate",
"endDate",
"id",
"unitId",
"userId",
"addDate",
"updateDate",
"active"
]
}