PostHog · Schema
HogFlowSchedule
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| rrule | string | |
| starts_at | string | |
| timezone | string | |
| variables | object | |
| status | object | |
| next_run_at | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HogFlowSchedule",
"title": "HogFlowSchedule",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"rrule": {
"type": "string"
},
"starts_at": {
"type": "string",
"format": "date-time"
},
"timezone": {
"type": "string",
"maxLength": 64
},
"variables": {},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/HogFlowScheduleStatusEnum"
}
],
"readOnly": true
},
"next_run_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
},
"required": [
"created_at",
"id",
"next_run_at",
"rrule",
"starts_at",
"status",
"updated_at"
]
}