diff --git a/.gitignore b/.gitignore index fdbae22..d84d410 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ .idea # Test files +gen .gentestdata \ No newline at end of file diff --git a/README.md b/README.md index 737b1e2..789a1f2 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,322 @@ [![CircleCI](https://circleci.com/gh/go-jet/jet/tree/develop.svg?style=svg&circle-token=97f255c6a4a3ab6590ea2e9195eb3ebf9f97b4a7)](https://circleci.com/gh/go-jet/jet/tree/develop) +Jet is sql builder for Postgresql(support for MySql and OracleSql will be added later). Jet enables writing typesafe SQL queries in Go, and ability to easily convert query result to desired arbitrary structure. + +#Features +* TODO + +# Getting Started + +##Prerequisites + +To install Jet package, you need to install Go and set your Go workspace first. + +[Go](https://golang.org/) **version 1.8+ is required** + +##Installation + +Use the bellow command to install jet +```sh +$ go get -u github.com/go-jet/jet +``` + +Install jetgen to GOPATH bin folder. This will allow generating jet files from the command line. + +```sh +go install github.com/go-jet/jet/cmd/jetgen +``` + +Make sure GOPATH bin folder is added to the PATH environment variable. + +##Quick Start +For this quick start example we will use sample dvd rental database. Full database dump can be found in [./tests/init/data/dvds.sql](./tests/init/data/dvds.sql) +Schema diagram of interest for example can be found [here](./examples/quick-start/diagram.png). + +###Generate sql builder and model files +To generate sql builder and data model go files we need to call jetgen, and provide it with postgres connection parameters and destination folder for generated go files. +Sample command used in tests: +```sh +jetgen -host=localhost -port=5432 -user=jet -password=jet -dbname=jetdb -schema dvds -path ./gen +``` +```sh +Connecting to postgres database: host=localhost port=5432 user=jet password=jet dbname=jetdb sslmode=disable +Retrieving schema information... + FOUND 15 table(s), 1 enum(s) +Cleaning up destination directory... +Generating table sql builder files... +Generating table model files... +Generating enum sql builder files... +Generating enum model files... +Done +``` +As jetgen command output suggest, jetgen will: +-connect to `dvds` database to retrieve information about the structure of database +-delete everything in destination folder `./gen`, +-and finally generate sql builder and model *.go files for all database tables and enums in destination folder `./tests/gentestdata`. + +###Now lets write some SQL queries in go + +First lets import jet and generated files from previous step +```go +import ( + . "github.com/go-jet/jet" // dot import so go code would resemble as much as native SQL + . "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/table" // dot import is not mandatory + + "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/model" +) +``` +Lets say we want to retrieve the list of all actors that acted in films longer than 180 minutes, film language is 'English' +and film category is not 'Action'. +```go +stmt := SELECT( + Actor.ActorID, Actor.FirstName, Actor.LastName, Actor.LastUpdate, // list of all actor columns (equivalent to Actor.AllColumns) + Film.AllColumns, // list of all film columns (equivalent to Film.FilmID, Film.Title, ...) + Language.AllColumns, + Category.AllColumns, + ).FROM( + Actor. + INNER_JOIN(FilmActor, Actor.ActorID.EQ(FilmActor.ActorID)). // INNER JOIN Actor with FilmActor on condition Actor.ActorID = FilmActor.ActorID + INNER_JOIN(Film, Film.FilmID.EQ(FilmActor.FilmID)). // then with Film, Language, FilmCategory and Category. + INNER_JOIN(Language, Language.LanguageID.EQ(Film.LanguageID)). + INNER_JOIN(FilmCategory, FilmCategory.FilmID.EQ(Film.FilmID)). + INNER_JOIN(Category, Category.CategoryID.EQ(FilmCategory.CategoryID)), + ).WHERE( + Language.Name.EQ(String("English")). // note every column has type. + AND(Category.Name.NOT_EQ(String("Action"))). // String column Language.Name and Category.Name can be compared only with string columns and expressions + AND(Film.Length.GT(Int(180))), // Film.Length is integer column and can be compared only with integer columns and expressions + ).ORDER_BY( + Actor.ActorID.ASC(), + Film.FilmID.ASC(), + ) +``` +To see sql formed with this statement: +```go +query, args, err := stmt.Sql() +``` +query - is parametrized query +args - are parameters for the query + +To see debug sql that can be copy pasted to sql editor and executed. +```go +query, err := stmt.DebugSql() +``` +query - is parametrized query where every parameter is replaced with appropriate string argument representation + +Well formed sql is just a first half the job. Now lets execute sql statement and store result in desired structure. +Let's say this is our desired structure: +```go +var dest []struct { + model.Actor + Films []struct { + model.Film + Language model.Language + Category []model.Category + } +} +``` +There is no limitation for how big or nested destination structure can be. + +Now to execute a statement on open database connection db. + +```go +err := stmt.Query(db, &dest) +handleError(err) +``` + +And thats it. `dest` now contains the list of all actors that acted in films longer than 180 minutes, film language is 'English' +and film category is not 'Action'. + +Lets print `dest` as a json to see: +```go +jsonText, _ := json.MarshalIndent(dest, "", "\t") +fmt.Println(string(jsonText)) +``` + +```json +[ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 3, + "FirstName": "Ed", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + ...(125 more items) +``` + +What if we also want to have list of films per category and actors per category, where films are longer than 180 minutes, film language is 'English' +and film category is not 'Action'. +In that case we can reuse above statement `stmt`, and just change our destination: + +```go +var dest2 []struct { + model.Category + + Film []model.Film + Actor []model.Actor +} + +err = stmt.Query(db, &dest2) +handleError(err) +``` +
+ `dest2` json: + +```json +[ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7" + }, + { + "FilmID": 50, + "Title": "Baked Cleopatra", + "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17" + } + ], + "Actor": [ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 20, + "FirstName": "Lucille", + "LastName": "Tracy", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 70, + "FirstName": "Michelle", + "LastName": "Mcconaughey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + ... +``` +
+ +Complete code example can be found at [./examples/quick-start/quick-start.go](./examples/quick-start/quick-start.go) + +#Contributing + +#Versioning + +#Licence \ No newline at end of file diff --git a/cmd/jetgen/main.go b/cmd/jetgen/main.go index 535d3db..d156905 100644 --- a/cmd/jetgen/main.go +++ b/cmd/jetgen/main.go @@ -25,8 +25,8 @@ func init() { flag.StringVar(&port, "port", "", "Database port") flag.StringVar(&user, "user", "", "Database user") flag.StringVar(&password, "password", "", "The user’s password") - flag.StringVar(&sslmode, "sslmode", "disable", "Whether or not to use SSL") - flag.StringVar(¶ms, "params", "", "Additional connection string parameters.") + flag.StringVar(&sslmode, "sslmode", "disable", "Whether or not to use SSL(optional)") + flag.StringVar(¶ms, "params", "", "Additional connection string parameters(optional)") flag.StringVar(&dbName, "dbname", "", "name of the database") flag.StringVar(&schemaName, "schema", "public", "Database schema name.") @@ -38,6 +38,12 @@ func init() { func main() { + if host == "" || port == "" || user == "" || dbName == "" || schemaName == "" { + fmt.Println("jetgen: required flag missing") + flag.Usage() + os.Exit(-2) + } + genData := postgresgen.DBConnection{ Host: host, Port: port, diff --git a/examples/quick-start/diagram.png b/examples/quick-start/diagram.png new file mode 100644 index 0000000..2ce2199 Binary files /dev/null and b/examples/quick-start/diagram.png differ diff --git a/examples/quick-start/quick-start.go b/examples/quick-start/quick-start.go new file mode 100644 index 0000000..31d1fde --- /dev/null +++ b/examples/quick-start/quick-start.go @@ -0,0 +1,91 @@ +package main + +import ( + "database/sql" + "encoding/json" + "fmt" + + . "github.com/go-jet/jet" // dot import so go code would resemble as much as native SQL + . "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/table" // dot import is not mandatory + + "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/model" + "github.com/go-jet/jet/tests/dbconfig" +) + +func main() { + + db, err := sql.Open("postgres", dbconfig.ConnectString) + panicOnError(err) + defer db.Close() + + stmt := SELECT( + Actor.ActorID, Actor.FirstName, Actor.LastName, Actor.LastUpdate, // list of all actor columns (equivalent to Actor.AllColumns) + Film.AllColumns, // list of all film columns (equivalent to Film.FilmID, Film.Title, ...) + Language.AllColumns, + Category.AllColumns, + ).FROM( + Actor. + INNER_JOIN(FilmActor, Actor.ActorID.EQ(FilmActor.ActorID)). // INNER JOIN Actor with FilmActor on condition Actor.ActorID = FilmActor.ActorID + INNER_JOIN(Film, Film.FilmID.EQ(FilmActor.FilmID)). // then with Film, Language, FilmCategory and Category. + INNER_JOIN(Language, Language.LanguageID.EQ(Film.LanguageID)). + INNER_JOIN(FilmCategory, FilmCategory.FilmID.EQ(Film.FilmID)). + INNER_JOIN(Category, Category.CategoryID.EQ(FilmCategory.CategoryID)), + ).WHERE( + Language.Name.EQ(String("English")). // note every column has type. + AND(Category.Name.NOT_EQ(String("Action"))). // String column Language.Name and Category.Name can be compared only with string columns and expressions + AND(Film.Length.GT(Int(180))), // Film.Length is integer column and can be compared only with integer columns and expressions + ).ORDER_BY( + Actor.ActorID.ASC(), + Film.FilmID.ASC(), + ) + + query, args, err := stmt.Sql() + panicOnError(err) + + fmt.Println("Parameterized query: ") + fmt.Println(query) + fmt.Println("Arguments: ") + fmt.Println(args) + + debugSql, err := stmt.DebugSql() + panicOnError(err) + + fmt.Println("Debug sql: ") + fmt.Println(debugSql) + + var dest []struct { + model.Actor + Films []struct { + model.Film + Language model.Language + Category []model.Category + } + } + + err = stmt.Query(db, &dest) + panicOnError(err) + + fmt.Println("dest to json: ") + jsonText, _ := json.MarshalIndent(dest, "", "\t") + fmt.Println(string(jsonText)) + + var dest2 []struct { + model.Category + + Film []model.Film + Actor []model.Actor + } + + err = stmt.Query(db, &dest2) + panicOnError(err) + + fmt.Println("dest2 to json: ") + jsonText, _ = json.MarshalIndent(dest2, "", "\t") + fmt.Println(string(jsonText)) +} + +func panicOnError(err error) { + if err != nil { + panic(err) + } +} diff --git a/tests/select_test.go b/tests/select_test.go index ab47b88..0ed8a0c 100644 --- a/tests/select_test.go +++ b/tests/select_test.go @@ -1218,3 +1218,92 @@ FOR` assert.NilError(t, err) } } + +func TestForQuickStart(t *testing.T) { + + var expectedSql = ` +SELECT actor.actor_id AS "actor.actor_id", + actor.first_name AS "actor.first_name", + actor.last_name AS "actor.last_name", + actor.last_update AS "actor.last_update", + film.film_id AS "film.film_id", + film.title AS "film.title", + film.description AS "film.description", + film.release_year AS "film.release_year", + film.language_id AS "film.language_id", + film.rental_duration AS "film.rental_duration", + film.rental_rate AS "film.rental_rate", + film.length AS "film.length", + film.replacement_cost AS "film.replacement_cost", + film.rating AS "film.rating", + film.last_update AS "film.last_update", + film.special_features AS "film.special_features", + film.fulltext AS "film.fulltext", + language.language_id AS "language.language_id", + language.name AS "language.name", + language.last_update AS "language.last_update", + category.category_id AS "category.category_id", + category.name AS "category.name", + category.last_update AS "category.last_update" +FROM dvds.actor + INNER JOIN dvds.film_actor ON (actor.actor_id = film_actor.actor_id) + INNER JOIN dvds.film ON (film.film_id = film_actor.film_id) + INNER JOIN dvds.language ON (language.language_id = film.language_id) + INNER JOIN dvds.film_category ON (film_category.film_id = film.film_id) + INNER JOIN dvds.category ON (category.category_id = film_category.category_id) +WHERE ((language.name = 'English') AND (category.name != 'Action')) AND (film.length > 180) +ORDER BY actor.actor_id ASC, film.film_id ASC; +` + + stmt := SELECT( + Actor.ActorID, Actor.FirstName, Actor.LastName, Actor.LastUpdate, // list of all actor columns (equivalent to Actor.AllColumns) + Film.AllColumns, // list of all film columns (equivalent to Film.FilmID, Film.Title, ...) + Language.AllColumns, + Category.AllColumns, + ).FROM( + Actor. + INNER_JOIN(FilmActor, Actor.ActorID.EQ(FilmActor.ActorID)). // INNER JOIN Actor with FilmActor on condition Actor.ActorID = FilmActor.ActorID + INNER_JOIN(Film, Film.FilmID.EQ(FilmActor.FilmID)). // then with Film, Language, FilmCategory and Category. + INNER_JOIN(Language, Language.LanguageID.EQ(Film.LanguageID)). + INNER_JOIN(FilmCategory, FilmCategory.FilmID.EQ(Film.FilmID)). + INNER_JOIN(Category, Category.CategoryID.EQ(FilmCategory.CategoryID)), + ).WHERE( + Language.Name.EQ(String("English")). // note that every column has type. + AND(Category.Name.NOT_EQ(String("Action"))). // String column Language.Name and Category.Name can be compared only with string expression + AND(Film.Length.GT(Int(180))), // Film.Length is integer column and can be compared only with integer expression + ).ORDER_BY( + Actor.ActorID.ASC(), + Film.FilmID.ASC(), + ) + + assertStatementSql(t, stmt, expectedSql, "English", "Action", int64(180)) + + var dest []struct { + model.Actor + + Films []struct { + model.Film + + Language model.Language + + Category []model.Category + } + } + + err := stmt.Query(db, &dest) + assert.NilError(t, err) + + assertJson(t, "./testdata/quick-start-dest.json", dest) + + var dest2 []struct { + model.Category + + Film []model.Film + Actor []model.Actor + } + + err = stmt.Query(db, &dest2) + assert.NilError(t, err) + + assertJson(t, "./testdata/quick-start-dest2.json", dest2) +} diff --git a/tests/testdata/quick-start-dest.json b/tests/testdata/quick-start-dest.json new file mode 100644 index 0000000..7ce04d9 --- /dev/null +++ b/tests/testdata/quick-start-dest.json @@ -0,0 +1,6067 @@ +[ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 3, + "FirstName": "Ed", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 4, + "FirstName": "Jennifer", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 9, + "FirstName": "Joe", + "LastName": "Swank", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 11, + "FirstName": "Zero", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 13, + "FirstName": "Uma", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 15, + "FirstName": "Cuba", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 16, + "FirstName": "Fred", + "LastName": "Costner", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 20, + "FirstName": "Lucille", + "LastName": "Tracy", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 21, + "FirstName": "Kirsten", + "LastName": "Paltrow", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 22, + "FirstName": "Elvis", + "LastName": "Marx", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 23, + "FirstName": "Sandra", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 26, + "FirstName": "Rip", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 27, + "FirstName": "Julia", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 28, + "FirstName": "Woody", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 33, + "FirstName": "Milla", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 34, + "FirstName": "Audrey", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 35, + "FirstName": "Judy", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 37, + "FirstName": "Val", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 38, + "FirstName": "Tom", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 40, + "FirstName": "Johnny", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 41, + "FirstName": "Jodie", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 42, + "FirstName": "Tom", + "LastName": "Miranda", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 43, + "FirstName": "Kirk", + "LastName": "Jovovich", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 44, + "FirstName": "Nick", + "LastName": "Stallone", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 45, + "FirstName": "Reese", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 46, + "FirstName": "Parker", + "LastName": "Goldberg", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 47, + "FirstName": "Julia", + "LastName": "Barrymore", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 48, + "FirstName": "Frances", + "LastName": "Day-Lewis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 50, + "FirstName": "Natalie", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 51, + "FirstName": "Gary", + "LastName": "Phoenix", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 54, + "FirstName": "Penelope", + "LastName": "Pinkett", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 55, + "FirstName": "Fay", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 57, + "FirstName": "Jude", + "LastName": "Cruise", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 58, + "FirstName": "Christian", + "LastName": "Akroyd", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 61, + "FirstName": "Christian", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 64, + "FirstName": "Ray", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 67, + "FirstName": "Jessica", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 68, + "FirstName": "Rip", + "LastName": "Winslet", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 70, + "FirstName": "Michelle", + "LastName": "Mcconaughey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 50, + "Title": "Baked Cleopatra", + "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 72, + "FirstName": "Sean", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 73, + "FirstName": "Gary", + "LastName": "Penn", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 74, + "FirstName": "Milla", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 76, + "FirstName": "Angelina", + "LastName": "Astaire", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 765, + "Title": "Saturn Name", + "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 78, + "FirstName": "Groucho", + "LastName": "Sinatra", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 79, + "FirstName": "Mae", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 83, + "FirstName": "Ben", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 84, + "FirstName": "James", + "LastName": "Pitt", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 85, + "FirstName": "Minnie", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 87, + "FirstName": "Spencer", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 88, + "FirstName": "Kenneth", + "LastName": "Pesci", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 90, + "FirstName": "Sean", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 93, + "FirstName": "Ellen", + "LastName": "Presley", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 94, + "FirstName": "Kenneth", + "LastName": "Torn", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 95, + "FirstName": "Daryl", + "LastName": "Wahlberg", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 813, + "Title": "Smoochy Control", + "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 98, + "FirstName": "Chris", + "LastName": "Bridges", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 765, + "Title": "Saturn Name", + "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 100, + "FirstName": "Spencer", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 101, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 103, + "FirstName": "Matthew", + "LastName": "Leigh", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 104, + "FirstName": "Penelope", + "LastName": "Cronyn", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 108, + "FirstName": "Warren", + "LastName": "Nolte", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 110, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 111, + "FirstName": "Cameron", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 112, + "FirstName": "Russell", + "LastName": "Bacall", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 113, + "FirstName": "Morgan", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 114, + "FirstName": "Morgan", + "LastName": "Mcdormand", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 116, + "FirstName": "Dan", + "LastName": "Streep", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 119, + "FirstName": "Warren", + "LastName": "Jackman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 121, + "FirstName": "Liza", + "LastName": "Bergman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 127, + "FirstName": "Kevin", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 128, + "FirstName": "Cate", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 129, + "FirstName": "Daryl", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 134, + "FirstName": "Gene", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 135, + "FirstName": "Rita", + "LastName": "Reynolds", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 137, + "FirstName": "Morgan", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 139, + "FirstName": "Ewan", + "LastName": "Gooding", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 140, + "FirstName": "Whoopi", + "LastName": "Hurt", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 141, + "FirstName": "Cate", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 144, + "FirstName": "Angela", + "LastName": "Witherspoon", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 146, + "FirstName": "Albert", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 152, + "FirstName": "Ben", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 153, + "FirstName": "Minnie", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 154, + "FirstName": "Meryl", + "LastName": "Gibson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 155, + "FirstName": "Ian", + "LastName": "Tandy", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 156, + "FirstName": "Fay", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 158, + "FirstName": "Vivien", + "LastName": "Basinger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 160, + "FirstName": "Chris", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 161, + "FirstName": "Harvey", + "LastName": "Hope", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 164, + "FirstName": "Humphrey", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 165, + "FirstName": "Al", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 166, + "FirstName": "Nick", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 168, + "FirstName": "Will", + "LastName": "Wilson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 169, + "FirstName": "Kenneth", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 171, + "FirstName": "Olympia", + "LastName": "Pfeiffer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 172, + "FirstName": "Groucho", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 175, + "FirstName": "William", + "LastName": "Hackman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 176, + "FirstName": "Jon", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 177, + "FirstName": "Gene", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 178, + "FirstName": "Lisa", + "LastName": "Monroe", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 179, + "FirstName": "Ed", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 180, + "FirstName": "Jeff", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 181, + "FirstName": "Matthew", + "LastName": "Carrey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 184, + "FirstName": "Humphrey", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 185, + "FirstName": "Michael", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 188, + "FirstName": "Rock", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 189, + "FirstName": "Cuba", + "LastName": "Birch", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 190, + "FirstName": "Audrey", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 192, + "FirstName": "John", + "LastName": "Suvari", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 193, + "FirstName": "Burt", + "LastName": "Temple", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 194, + "FirstName": "Meryl", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 195, + "FirstName": "Jayne", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 813, + "Title": "Smoochy Control", + "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 196, + "FirstName": "Bela", + "LastName": "Walken", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 197, + "FirstName": "Reese", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 199, + "FirstName": "Julia", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + } +] \ No newline at end of file diff --git a/tests/testdata/quick-start-dest2.json b/tests/testdata/quick-start-dest2.json new file mode 100644 index 0000000..4b601e7 --- /dev/null +++ b/tests/testdata/quick-start-dest2.json @@ -0,0 +1,1769 @@ +[ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7" + }, + { + "FilmID": 50, + "Title": "Baked Cleopatra", + "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17" + } + ], + "Actor": [ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 20, + "FirstName": "Lucille", + "LastName": "Tracy", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 70, + "FirstName": "Michelle", + "LastName": "Mcconaughey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1" + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1" + } + ], + "Actor": [ + { + "ActorID": 3, + "FirstName": "Ed", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 27, + "FirstName": "Julia", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 28, + "FirstName": "Woody", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 47, + "FirstName": "Julia", + "LastName": "Barrymore", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 84, + "FirstName": "James", + "LastName": "Pitt", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 111, + "FirstName": "Cameron", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 185, + "FirstName": "Michael", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5" + }, + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4" + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16" + } + ], + "Actor": [ + { + "ActorID": 4, + "FirstName": "Jennifer", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 21, + "FirstName": "Kirsten", + "LastName": "Paltrow", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 41, + "FirstName": "Jodie", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 45, + "FirstName": "Reese", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 57, + "FirstName": "Jude", + "LastName": "Cruise", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 58, + "FirstName": "Christian", + "LastName": "Akroyd", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 61, + "FirstName": "Christian", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 78, + "FirstName": "Groucho", + "LastName": "Sinatra", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 87, + "FirstName": "Spencer", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 98, + "FirstName": "Chris", + "LastName": "Bridges", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 108, + "FirstName": "Warren", + "LastName": "Nolte", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 160, + "FirstName": "Chris", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 166, + "FirstName": "Nick", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 190, + "FirstName": "Audrey", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 192, + "FirstName": "John", + "LastName": "Suvari", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11" + }, + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12" + }, + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 9, + "FirstName": "Joe", + "LastName": "Swank", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 26, + "FirstName": "Rip", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 44, + "FirstName": "Nick", + "LastName": "Stallone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 51, + "FirstName": "Gary", + "LastName": "Phoenix", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 55, + "FirstName": "Fay", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 57, + "FirstName": "Jude", + "LastName": "Cruise", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 83, + "FirstName": "Ben", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 119, + "FirstName": "Warren", + "LastName": "Jackman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 161, + "FirstName": "Harvey", + "LastName": "Hope", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 177, + "FirstName": "Gene", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 178, + "FirstName": "Lisa", + "LastName": "Monroe", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 197, + "FirstName": "Reese", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2" + }, + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 38, + "FirstName": "Tom", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 42, + "FirstName": "Tom", + "LastName": "Miranda", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 61, + "FirstName": "Christian", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 67, + "FirstName": "Jessica", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 179, + "FirstName": "Ed", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 13, + "FirstName": "Uma", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 15, + "FirstName": "Cuba", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 35, + "FirstName": "Judy", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 90, + "FirstName": "Sean", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 112, + "FirstName": "Russell", + "LastName": "Bacall", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 153, + "FirstName": "Minnie", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 179, + "FirstName": "Ed", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22" + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2" + }, + { + "FilmID": 813, + "Title": "Smoochy Control", + "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 83, + "FirstName": "Ben", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 95, + "FirstName": "Daryl", + "LastName": "Wahlberg", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 101, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 113, + "FirstName": "Morgan", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 114, + "FirstName": "Morgan", + "LastName": "Mcdormand", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 135, + "FirstName": "Rita", + "LastName": "Reynolds", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 137, + "FirstName": "Morgan", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 139, + "FirstName": "Ewan", + "LastName": "Gooding", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 168, + "FirstName": "Will", + "LastName": "Wilson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 175, + "FirstName": "William", + "LastName": "Hackman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 194, + "FirstName": "Meryl", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 195, + "FirstName": "Jayne", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5" + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5" + }, + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9" + }, + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4" + }, + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8" + } + ], + "Actor": [ + { + "ActorID": 9, + "FirstName": "Joe", + "LastName": "Swank", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 15, + "FirstName": "Cuba", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 16, + "FirstName": "Fred", + "LastName": "Costner", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 22, + "FirstName": "Elvis", + "LastName": "Marx", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 23, + "FirstName": "Sandra", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 46, + "FirstName": "Parker", + "LastName": "Goldberg", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 48, + "FirstName": "Frances", + "LastName": "Day-Lewis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 54, + "FirstName": "Penelope", + "LastName": "Pinkett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 95, + "FirstName": "Daryl", + "LastName": "Wahlberg", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 134, + "FirstName": "Gene", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 140, + "FirstName": "Whoopi", + "LastName": "Hurt", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 156, + "FirstName": "Fay", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 164, + "FirstName": "Humphrey", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 168, + "FirstName": "Will", + "LastName": "Wilson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 169, + "FirstName": "Kenneth", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 180, + "FirstName": "Jeff", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 185, + "FirstName": "Michael", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 189, + "FirstName": "Cuba", + "LastName": "Birch", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 199, + "FirstName": "Julia", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14" + }, + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19" + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7" + }, + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5" + } + ], + "Actor": [ + { + "ActorID": 11, + "FirstName": "Zero", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 13, + "FirstName": "Uma", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 28, + "FirstName": "Woody", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 44, + "FirstName": "Nick", + "LastName": "Stallone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 50, + "FirstName": "Natalie", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 64, + "FirstName": "Ray", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 79, + "FirstName": "Mae", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 85, + "FirstName": "Minnie", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 90, + "FirstName": "Sean", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 121, + "FirstName": "Liza", + "LastName": "Bergman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 127, + "FirstName": "Kevin", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 129, + "FirstName": "Daryl", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 146, + "FirstName": "Albert", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 154, + "FirstName": "Meryl", + "LastName": "Gibson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 175, + "FirstName": "William", + "LastName": "Hackman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 184, + "FirstName": "Humphrey", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 193, + "FirstName": "Burt", + "LastName": "Temple", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 195, + "FirstName": "Jayne", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11" + }, + { + "FilmID": 765, + "Title": "Saturn Name", + "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16" + }, + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19" + } + ], + "Actor": [ + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 34, + "FirstName": "Audrey", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 76, + "FirstName": "Angelina", + "LastName": "Astaire", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 98, + "FirstName": "Chris", + "LastName": "Bridges", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 101, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 128, + "FirstName": "Cate", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 188, + "FirstName": "Rock", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8" + } + ], + "Actor": [ + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 33, + "FirstName": "Milla", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 79, + "FirstName": "Mae", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 93, + "FirstName": "Ellen", + "LastName": "Presley", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 94, + "FirstName": "Kenneth", + "LastName": "Torn", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 144, + "FirstName": "Angela", + "LastName": "Witherspoon", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 158, + "FirstName": "Vivien", + "LastName": "Basinger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 165, + "FirstName": "Al", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 196, + "FirstName": "Bela", + "LastName": "Walken", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5" + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10" + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2" + }, + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16" + }, + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8" + } + ], + "Actor": [ + { + "ActorID": 23, + "FirstName": "Sandra", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 26, + "FirstName": "Rip", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 37, + "FirstName": "Val", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 40, + "FirstName": "Johnny", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 45, + "FirstName": "Reese", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 58, + "FirstName": "Christian", + "LastName": "Akroyd", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 68, + "FirstName": "Rip", + "LastName": "Winslet", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 73, + "FirstName": "Gary", + "LastName": "Penn", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 88, + "FirstName": "Kenneth", + "LastName": "Pesci", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 104, + "FirstName": "Penelope", + "LastName": "Cronyn", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 110, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 116, + "FirstName": "Dan", + "LastName": "Streep", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 121, + "FirstName": "Liza", + "LastName": "Bergman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 141, + "FirstName": "Cate", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 152, + "FirstName": "Ben", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 154, + "FirstName": "Meryl", + "LastName": "Gibson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 155, + "FirstName": "Ian", + "LastName": "Tandy", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 156, + "FirstName": "Fay", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10" + } + ], + "Actor": [ + { + "ActorID": 43, + "FirstName": "Kirk", + "LastName": "Jovovich", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 153, + "FirstName": "Minnie", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9" + }, + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9" + } + ], + "Actor": [ + { + "ActorID": 72, + "FirstName": "Sean", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 74, + "FirstName": "Milla", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 100, + "FirstName": "Spencer", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 103, + "FirstName": "Matthew", + "LastName": "Leigh", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 171, + "FirstName": "Olympia", + "LastName": "Pfeiffer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 172, + "FirstName": "Groucho", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 176, + "FirstName": "Jon", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 180, + "FirstName": "Jeff", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 181, + "FirstName": "Matthew", + "LastName": "Carrey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 194, + "FirstName": "Meryl", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + } +] \ No newline at end of file