Optimizely · Schema

ObjectInput

Input for creating or updating an object in ODP

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
object_id string Unique identifier for the object
fields object Object field values
View JSON Schema on GitHub

JSON Schema

optimizely-objectinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObjectInput",
  "title": "ObjectInput",
  "type": "object",
  "description": "Input for creating or updating an object in ODP",
  "properties": {
    "object_id": {
      "type": "string",
      "description": "Unique identifier for the object"
    },
    "fields": {
      "type": "object",
      "description": "Object field values",
      "additionalProperties": true
    }
  }
}