DatasetInput

DatasetInput schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
name string
description string
schemaRef object
View JSON Schema on GitHub

JSON Schema

experience-platform-api-dataset-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/experience-platform-api-dataset-input-schema.json",
  "title": "DatasetInput",
  "description": "DatasetInput schema",
  "type": "object",
  "required": [
    "name",
    "schemaRef"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "schemaRef": {
      "type": "object",
      "required": [
        "id",
        "contentType"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "contentType": {
          "type": "string"
        }
      }
    }
  }
}