Optimizely · Schema

Label

A label used for categorizing content

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
id string Unique identifier for the label
name string Display name of the label
color string Color code for the label
View JSON Schema on GitHub

JSON Schema

optimizely-label-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Label",
  "title": "Label",
  "type": "object",
  "description": "A label used for categorizing content",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the label"
    },
    "name": {
      "type": "string",
      "description": "Display name of the label"
    },
    "color": {
      "type": "string",
      "description": "Color code for the label"
    }
  }
}