Optimizely · Schema

ProfileInput

Input for creating or updating a customer profile

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
identifiers object Customer identifiers for matching
attributes object Profile attributes to set or update
View JSON Schema on GitHub

JSON Schema

optimizely-profileinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfileInput",
  "title": "ProfileInput",
  "type": "object",
  "description": "Input for creating or updating a customer profile",
  "properties": {
    "identifiers": {
      "type": "object",
      "description": "Customer identifiers for matching",
      "additionalProperties": {
        "type": "string"
      }
    },
    "attributes": {
      "type": "object",
      "description": "Profile attributes to set or update",
      "additionalProperties": true
    }
  }
}