MonitorPlanCommentDTO is a JSON Structure definition published by EPA — U.S. Environmental Protection Agency, describing 9 properties, of which 9 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-structure/cam-monitor-plan-monitor-plan-comment-dto-structure.json",
"name": "MonitorPlanCommentDTO",
"description": "MonitorPlanCommentDTO schema from Monitor Plan Management OpenAPI Specification",
"type": "object",
"properties": {
"monitoringPlanComment": {
"type": "string",
"description": "Comment on a monitoring plan",
"minLength": 1,
"maxLength": 4000,
"example": "DAHS was updated for GT-1 on 11/10/2016 by a previous owner, but the component ID was not updated on the gas system. This was corrected on 9/8/2020."
},
"beginDate": {
"type": "datetime",
"description": "Date and time in which an activity started or ended.",
"example": "2020-09-28"
},
"endDate": {
"type": "datetime",
"description": "Last date in which information was effective. This date will be null for active records.",
"example": null
},
"id": {
"type": "string",
"description": "Unique identifier of a monitoring plan comment record.",
"example": "V-APPWORK--66020554D3C844E78730052AC3808151"
},
"planId": {
"type": "string",
"description": "Unique identifier of a monitoring plan record.",
"example": "MDC-2483BA898490441B97B7D7CFB1BE6D9A"
},
"userId": {
"type": "string",
"description": "User account or source of data that added or updated record.",
"example": "abcde"
},
"addDate": {
"type": "string",
"description": "Date and time in which record was added.",
"example": "2020-10-28"
},
"updateDate": {
"type": "string",
"description": "Date and time in which record was last updated.",
"example": "2020-10-28"
},
"active": {
"type": "boolean",
"description": "Flag for active monitor location record",
"example": true
}
},
"required": [
"monitoringPlanComment",
"beginDate",
"endDate",
"id",
"planId",
"userId",
"addDate",
"updateDate",
"active"
]
}