Created
February 11, 2019 21:17
-
-
Save chrisking/c32d8077448743d9660b2bda2ee7075e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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