Amazon Personalize · Schema

CreateDatasetGroupRequest

CreateDatasetGroupRequest schema from Amazon Personalize

Artificial IntelligenceCustomer ExperienceMachine-LearningMLPersonalizationRecommendations

Properties

Name Type Description
name string The name of the dataset group
domain string The domain of the dataset group
View JSON Schema on GitHub

JSON Schema

openapi-create-dataset-group-request-schema.json Raw ↑
{
  "$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"
  ]
}