Klaviyo · Schema
SendPushNotificationActionContentExperimentActionData
MarketingEmailSMSCustomer DataEcommerceAutomation
Properties
| Name | Type | Description |
|---|---|---|
| status | string | Flow action status. |
| experiment_status | string | Not allowed on create. |
| main_action | object | |
| current_experiment | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SendPushNotificationActionContentExperimentActionData",
"title": "SendPushNotificationActionContentExperimentActionData",
"type": "object",
"properties": {
"status": {
"description": "Flow action status.",
"type": "string",
"example": "draft",
"default": "draft",
"enum": [
"disabled",
"draft",
"live",
"manual"
]
},
"experiment_status": {
"description": "Not allowed on create.",
"type": "string",
"enum": [
"completed",
"draft",
"live"
],
"nullable": true
},
"main_action": {
"$ref": "#/components/schemas/SendPushNotificationAction"
},
"current_experiment": {
"$ref": "#/components/schemas/SendPushNotificationActionCurrentExperiment",
"nullable": true
}
},
"required": [
"main_action"
]
}