Request body for creating a new data set.
{ "$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" } } } }