{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CmpCampaign", "title": "CmpCampaign", "type": "object", "description": "A content campaign in the editorial calendar", "properties": { "id": { "type": "string", "description": "Unique identifier for the campaign" }, "title": { "type": "string", "description": "Title of the campaign" }, "description": { "type": "string", "description": "Description of the campaign" }, "start_date": { "type": "string", "format": "date", "description": "Campaign start date" }, "end_date": { "type": "string", "format": "date", "description": "Campaign end date" }, "status": { "type": "string", "description": "Current status of the campaign" }, "labels": { "type": "array", "description": "Labels associated with the campaign", "items": { "type": "string" } }, "created_at": { "type": "string", "format": "date-time", "description": "Timestamp when the campaign was created" }, "updated_at": { "type": "string", "format": "date-time", "description": "Timestamp when the campaign was last updated" } } }