Optimizely · Schema

SchemaObjectInput

Input for creating a domain object type

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
display_name string Human-readable display name
description string Description of the object type
View JSON Schema on GitHub

JSON Schema

optimizely-schemaobjectinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaObjectInput",
  "title": "SchemaObjectInput",
  "type": "object",
  "description": "Input for creating a domain object type",
  "required": [
    "display_name"
  ],
  "properties": {
    "display_name": {
      "type": "string",
      "description": "Human-readable display name"
    },
    "description": {
      "type": "string",
      "description": "Description of the object type"
    }
  }
}