Optimizely · Schema
CatalogNode
A catalog node (category)
A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code for the node |
| name | string | Display name of the node |
| parent_node_code | string | Code of the parent node |
| catalog_name | string | Name of the catalog this node belongs to |
| start_date | string | Availability start date |
| end_date | string | Availability end date |
| is_active | boolean | Whether the node is active |
| sort_order | integer | Sort order for display |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CatalogNode",
"title": "CatalogNode",
"type": "object",
"description": "A catalog node (category)",
"properties": {
"code": {
"type": "string",
"description": "Unique code for the node"
},
"name": {
"type": "string",
"description": "Display name of the node"
},
"parent_node_code": {
"type": "string",
"description": "Code of the parent node"
},
"catalog_name": {
"type": "string",
"description": "Name of the catalog this node belongs to"
},
"start_date": {
"type": "string",
"format": "date-time",
"description": "Availability start date"
},
"end_date": {
"type": "string",
"format": "date-time",
"description": "Availability end date"
},
"is_active": {
"type": "boolean",
"description": "Whether the node is active"
},
"sort_order": {
"type": "integer",
"description": "Sort order for display"
}
}
}