{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MailingList",
"title": "MailingList",
"type": "object",
"description": "A mailing list used for campaign distribution",
"properties": {
"id": {
"type": "integer",
"format": "int64",
"description": "Unique identifier for the mailing list"
},
"name": {
"type": "string",
"description": "Human-readable name of the mailing list"
},
"recipient_count": {
"type": "integer",
"description": "Number of recipients in the mailing list"
},
"created": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the mailing list was created"
}
}
}