Skip to content

Instantly share code, notes, and snippets.

@dq-hustlecoding
Created December 2, 2021 07:20
Show Gist options
  • Save dq-hustlecoding/8892edd43b4b5e3c4ddc7747bf741655 to your computer and use it in GitHub Desktop.
Save dq-hustlecoding/8892edd43b4b5e3c4ddc7747bf741655 to your computer and use it in GitHub Desktop.
event schema for AWS Personalize
{
"type": "record",
"name": "Interactions",
"namespace": "your.namespace.schema",
"fields": [
{
"name": "user_id",
"type": "string"
},
{
"name": "item_id",
"type": "string"
},
{
"name": "point",
"type": "float"
}
],
"version": "1.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment