Create Data Set Request

Request body for creating a new data set.

Data ExchangeData MarketplaceThird-Party DataAnalyticsSubscriptions

Properties

Name Type Description
Name string
Description string
AssetType string
Tags object
View JSON Schema on GitHub

JSON Schema

create-data-set-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-exchange/json-schema/create-data-set-request-schema.json",
  "title": "Create Data Set Request",
  "description": "Request body for creating a new data set.",
  "type": "object",
  "required": [
    "Name",
    "Description",
    "AssetType"
  ],
  "properties": {
    "Name": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "AssetType": {
      "type": "string"
    },
    "Tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}