Amazon Personalize · JSON Structure

Openapi Create Dataset Group Request Structure

CreateDatasetGroupRequest schema from Amazon Personalize

Type: object Properties: 2 Required: 1
AICustomer ExperienceMachine LearningMLPersonalizationRecommendations

CreateDatasetGroupRequest is a JSON Structure definition published by Amazon Personalize, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name domain

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-personalize/refs/heads/main/json-structure/openapi-create-dataset-group-request-structure.json",
  "name": "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"
  ]
}