{ "$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-request-dto-schema.json", "title": "EmailRecipientListRequestDto", "description": "EmailRecipientListRequestDto schema from CAMD Administrative & General Services OpenAPI Specification", "type": "object", "properties": { "emailType": { "type": "string", "description": "The type of email", "example": "SUBMISSIONREMINDER" }, "plantIdList": { "description": "List of plant IDs", "example": [ 1, 3, 5 ], "type": "array", "items": { "type": "number" } } }, "required": [ "emailType", "plantIdList" ] }