{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MarketingCampaign", "title": "MarketingCampaign", "properties": { "created_at": { "format": "date-time", "type": "string" }, "from_email": { "type": "string" }, "from_name": { "type": "string" }, "id": { "type": "string" }, "list_ids": { "$ref": "#/components/schemas/property_MarketingCampaign_list_ids" }, "name": { "type": "string" }, "preview_text": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "reply_to_email": { "type": "string" }, "send_at": { "format": "date-time", "type": "string" }, "status": { "enum": [ "DRAFT", "SCHEDULED", "SENDING", "SENT", "CANCELLED", "PAUSED", "ARCHIVED", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "subject_line": { "type": "string" }, "type": { "type": "string" }, "updated_at": { "format": "date-time", "type": "string" } }, "type": "object" }