{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CampaignInput", "title": "CampaignInput", "type": "object", "description": "Input for creating or updating a campaign", "properties": { "project_id": { "type": "integer", "format": "int64", "description": "The project this campaign belongs to" }, "name": { "type": "string", "description": "Human-readable name of the campaign" }, "status": { "type": "string", "description": "Current status of the campaign", "enum": [ "active", "paused", "not_started", "archived" ] } } }