Cam Monitor Plan Monitor Plan Comment Structure

MonitorPlanComment schema from Monitor Plan Management OpenAPI Specification

Type: object Properties: 9 Required: 9
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

MonitorPlanComment 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.

Properties

id monitorPlanId monitorPlanComment beginDate endDate userId addDate updateDate plan

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-monitor-plan-comment-structure.json",
  "name": "MonitorPlanComment",
  "description": "MonitorPlanComment schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "12345"
    },
    "monitorPlanId": {
      "type": "string",
      "example": "12345"
    },
    "monitorPlanComment": {
      "type": "string",
      "example": "string"
    },
    "beginDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "endDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "updateDate": {
      "type": "datetime",
      "example": "2024-01-15T12:00:00Z"
    },
    "plan": {
      "$ref": "#/components/schemas/MonitorPlan"
    }
  },
  "required": [
    "id",
    "monitorPlanId",
    "monitorPlanComment",
    "beginDate",
    "endDate",
    "userId",
    "addDate",
    "updateDate",
    "plan"
  ]
}