Optimizely · Schema

AssetInput

Input for updating an asset

A/B TestingContent ManagementCustomer DataE-CommerceExperimentationFeature FlagsMarketing

Properties

Name Type Description
title string Title of the asset
description string Description of the asset
labels array Labels to associate with the asset
View JSON Schema on GitHub

JSON Schema

optimizely-assetinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssetInput",
  "title": "AssetInput",
  "type": "object",
  "description": "Input for updating an asset",
  "properties": {
    "title": {
      "type": "string",
      "description": "Title of the asset"
    },
    "description": {
      "type": "string",
      "description": "Description of the asset"
    },
    "labels": {
      "type": "array",
      "description": "Labels to associate with the asset",
      "items": {
        "type": "string"
      }
    }
  }
}