Optimizely · Schema

NodeRelationInput

Input for creating or updating a node relation

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
node_code string Code of the related node
sort_order integer Sort order within the node
View JSON Schema on GitHub

JSON Schema

optimizely-noderelationinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NodeRelationInput",
  "title": "NodeRelationInput",
  "type": "object",
  "description": "Input for creating or updating a node relation",
  "properties": {
    "node_code": {
      "type": "string",
      "description": "Code of the related node"
    },
    "sort_order": {
      "type": "integer",
      "description": "Sort order within the node"
    }
  }
}