EmailRecipientListResponseDto

EmailRecipientListResponseDto schema from CAMD Administrative & General Services OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
recipients array List of email recipients
hasError boolean Indicates if an error occurred
errorMessage string Error message if an error occurred
View JSON Schema on GitHub

JSON Schema

cam-camd-services-email-recipient-list-response-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-camd-services-email-recipient-list-response-dto-schema.json",
  "title": "EmailRecipientListResponseDto",
  "description": "EmailRecipientListResponseDto schema from CAMD Administrative & General Services OpenAPI Specification",
  "type": "object",
  "properties": {
    "recipients": {
      "description": "List of email recipients",
      "items": {
        "type": "array",
        "items": {
          "type": "a"
        }
      },
      "type": "array",
      "example": [
        [
          "string"
        ]
      ]
    },
    "hasError": {
      "type": "boolean",
      "description": "Indicates if an error occurred",
      "example": false
    },
    "errorMessage": {
      "type": "string",
      "description": "Error message if an error occurred",
      "example": ""
    }
  },
  "required": [
    "recipients",
    "hasError",
    "errorMessage"
  ]
}