{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SmartCampaign", "title": "SmartCampaign", "type": "object", "description": "A smart campaign that automates multi-step marketing workflows", "properties": { "id": { "type": "integer", "format": "int64", "description": "Unique identifier for the smart campaign" }, "name": { "type": "string", "description": "Human-readable name of the smart campaign" }, "status": { "type": "string", "description": "Current status of the smart campaign", "enum": [ "active", "paused", "draft", "completed" ] }, "created": { "type": "string", "format": "date-time", "description": "Timestamp when the campaign was created" }, "last_modified": { "type": "string", "format": "date-time", "description": "Timestamp when the campaign was last modified" } } }