Optimizely · Schema

SchemaObject

A domain object type definition in the ODP schema

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

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

JSON Schema

optimizely-schemaobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaObject",
  "title": "SchemaObject",
  "type": "object",
  "description": "A domain object type definition in the ODP schema",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the object type"
    },
    "display_name": {
      "type": "string",
      "description": "Human-readable display name"
    },
    "description": {
      "type": "string",
      "description": "Description of the object type"
    },
    "fields": {
      "type": "array",
      "description": "Fields defined on the object type",
      "items": {
        "$ref": "#/components/schemas/SchemaField"
      }
    }
  }
}