Request body for creating a DataZone domain.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/amazon-datazone/json-schema/create-domain-request-schema.json", "title": "Create Domain Request", "description": "Request body for creating a DataZone domain.", "type": "object", "required": [ "name", "domainExecutionRole" ], "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "domainExecutionRole": { "type": "string" }, "tags": { "type": "object" } } }