Optimizely · Schema

CatalogInput

Input for creating or updating a catalog

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
name string Name of the catalog
default_currency string Default currency code
default_language string Default language code
is_active boolean Whether the catalog is active
View JSON Schema on GitHub

JSON Schema

optimizely-cataloginput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogInput",
  "title": "CatalogInput",
  "type": "object",
  "description": "Input for creating or updating a catalog",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the catalog"
    },
    "default_currency": {
      "type": "string",
      "description": "Default currency code"
    },
    "default_language": {
      "type": "string",
      "description": "Default language code"
    },
    "is_active": {
      "type": "boolean",
      "description": "Whether the catalog is active"
    }
  }
}