LastUpdatedConfigDTO

LastUpdatedConfigDTO schema from Monitor Plan Management OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
changedConfigs array
mostRecentUpdate string
View JSON Schema on GitHub

JSON Schema

cam-monitor-plan-last-updated-config-dto-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-last-updated-config-dto-schema.json",
  "title": "LastUpdatedConfigDTO",
  "description": "LastUpdatedConfigDTO schema from Monitor Plan Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "changedConfigs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MonitorPlan"
      },
      "example": [
        "string"
      ]
    },
    "mostRecentUpdate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    }
  },
  "required": [
    "changedConfigs",
    "mostRecentUpdate"
  ]
}