Adobe Experience Cloud · JSON Structure

Experience Platform Api Dataset Input Structure

DatasetInput schema

Type: object Properties: 3 Required: 2
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

DatasetInput is a JSON Structure definition published by Adobe Experience Cloud, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description schemaRef

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-structure/experience-platform-api-dataset-input-structure.json",
  "name": "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"
        }
      }
    }
  }
}