{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-personalize/refs/heads/main/json-schema/openapi-create-dataset-group-request-schema.json", "title": "CreateDatasetGroupRequest", "description": "CreateDatasetGroupRequest schema from Amazon Personalize", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the dataset group" }, "domain": { "type": "string", "enum": [ "ECOMMERCE", "VIDEO_ON_DEMAND" ], "description": "The domain of the dataset group" } }, "required": [ "name" ] }