Optimizely · Schema
CmpCampaign
A content campaign in the editorial calendar
A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the campaign |
| title | string | Title of the campaign |
| description | string | Description of the campaign |
| start_date | string | Campaign start date |
| end_date | string | Campaign end date |
| status | string | Current status of the campaign |
| labels | array | Labels associated with the campaign |
| created_at | string | Timestamp when the campaign was created |
| updated_at | string | Timestamp when the campaign was last updated |
JSON Schema
{
"$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"
}
}
}