Optimizely · Schema

CatalogNodeInput

Input for creating or updating a catalog node

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
is_active boolean Whether the node is active
sort_order integer Sort order for display
View JSON Schema on GitHub

JSON Schema

optimizely-catalognodeinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogNodeInput",
  "title": "CatalogNodeInput",
  "type": "object",
  "description": "Input for creating or updating a catalog node",
  "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"
    },
    "is_active": {
      "type": "boolean",
      "description": "Whether the node is active"
    },
    "sort_order": {
      "type": "integer",
      "description": "Sort order for display"
    }
  }
}