Skip to content

Instantly share code, notes, and snippets.

@chrisking
Created February 11, 2019 21:17
Show Gist options
  • Select an option

  • Save chrisking/c32d8077448743d9660b2bda2ee7075e to your computer and use it in GitHub Desktop.

Select an option

Save chrisking/c32d8077448743d9660b2bda2ee7075e to your computer and use it in GitHub Desktop.
item_schema = {
"type": "record",
"name": "Item",
"namespace": "com.amazonaws.personalize.schema",
"fields": [
{
"name": "ACTION",
"type": "int"
},
{
"name": "ADVENTURE",
"type": "int"
},
{
"name": "ANIMATION",
"type": "int"
},
{
"name": "CHILDREN",
"type": "int"
},
{
"name": "COMEDY",
"type": "int"
},
{
"name": "CRIME",
"type": "int"
},
{
"name": "DOCUMENTARY",
"type": "int"
},
{
"name": "DRAMA",
"type": "int"
},
{
"name": "FANTASY",
"type": "int"
},
{
"name": "FILM_NOIR",
"type": "int"
},
{
"name": "HORROR",
"type": "int"
},
{
"name": "IMDB_URL",
"type": "string"
},
{
"name": "MUSICAL",
"type": "int"
},
{
"name": "MYSTERY",
"type": "int"
},
{
"name": "ROMANCE",
"type": "int"
},
{
"name": "SCI_FI",
"type": "int"
},
{
"name": "THRILLER",
"type": "int"
},
{
"name": "WAR",
"type": "int"
},
{
"name": "WESTERN",
"type": "int"
},
{
"name": "ITEM_ID",
"type": "string"
},
{
"name": "MOVIE_TITLE",
"type": "string"
},
{
"name": "RELEASE_DATE",
"type": "string"
},
{
"name": "UNKNOWN",
"type": "int"
}
],
"version": "1.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment